home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20030409-20031118 / 000056_jaltman2@nyc.rr.com_Wed May 7 09:54:52 EDT 2003.msg < prev    next >
Text File  |  2003-11-18  |  3KB  |  62 lines

  1. Article: 14276 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!iad-feed.news.verio.net!iad-peer.news.verio.net!news.verio.net!newsfeed.vmunix.org!central.cox.net!cox.net!bigfeed1.bellsouth.net!news.bellsouth.net!news-east.rr.com!news-server.columbus.rr.com!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!not-for-mail
  3. From: "Jeffrey Altman [Road Runner NYC]" <jaltman2@nyc.rr.com>
  4. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3) Gecko/20030312
  5. X-Accept-Language: en-us, en
  6. MIME-Version: 1.0
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: "ftp check file": some machines are ok, some are not
  9. References: <8a794c4f.0305061127.44650bc6@posting.google.com>
  10. In-Reply-To: <8a794c4f.0305061127.44650bc6@posting.google.com>
  11. Content-Type: text/plain; charset=us-ascii; format=flowed
  12. Content-Transfer-Encoding: 7bit
  13. Lines: 39
  14. Message-ID: <HgWta.30$kH.24064@twister.nyc.rr.com>
  15. Date: Tue, 06 May 2003 22:01:11 GMT
  16. NNTP-Posting-Host: 66.108.138.151
  17. X-Complaints-To: abuse@rr.com
  18. X-Trace: twister.nyc.rr.com 1052258471 66.108.138.151 (Tue, 06 May 2003 18:01:11 EDT)
  19. NNTP-Posting-Date: Tue, 06 May 2003 18:01:11 EDT
  20. Organization: Road Runner - NYC
  21. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14276
  22.  
  23. FTP is an application level protocol.  It cannot be effected by the type
  24. of underlying connection.  There must be something else going on here.
  25.  
  26.  
  27. onions wrote:
  28. > Hello kermit users,
  29. >   I am trying to download files only when a certain file is not on the 
  30. >   directory.  As you may guess, the file is an indicator and means 
  31. >   " files on the directory are being modified, so don't download ".
  32. >   
  33. >   I have used "ftp check INDICATOR" as below: 
  34. >          ...      
  35. >          ftp check INDICATOR
  36. >          if success exit 1
  37. >          if fail {
  38. >             ftp mget *
  39. >             ftp bye
  40. >          }
  41. >          exit
  42. >   The problem is the above code works on machines connected by ppp, 
  43. >   and dosn't work on machines connected by internet. 
  44. >   It shows the message as below, and hold for the user's input. 
  45. >   "Control-C" makes move forward, but it should be done without 
  46. >   user's input. 
  47. >         Remote system type is UNIX.
  48. >         Default transfer mode is BINARY
  49. >         CWD command successful.
  50. >         INDICATOR: No such file or directory.  -----> waiting 
  51. >   Any help would be appreciated. 
  52. >   My working env is Linux(Redhat 8.0) and C-Kermit 8.0.209
  53. >   onions (onions@kr01.piahost.net)
  54.  
  55.